func strconv.formatBits

7 uses

	strconv (current package)
		ftoa.go#L474: 	dst, _ = formatBits(dst, mant, 10, false, true)
		ftoa.go#L484: 	dst, _ = formatBits(dst, uint64(exp), 10, exp < 0, true)
		itoa.go#L18: 	_, s := formatBits(nil, i, base, false, false)
		itoa.go#L29: 	_, s := formatBits(nil, uint64(i), base, i < 0, false)
		itoa.go#L44: 	dst, _ = formatBits(dst, uint64(i), base, i < 0, true)
		itoa.go#L54: 	dst, _ = formatBits(dst, i, base, false, true)
		itoa.go#L88: func formatBits(dst []byte, u uint64, base int, neg, append_ bool) (d []byte, s string) {